home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / sl_gen.zip / SL-GEN.DOC < prev    next >
Text File  |  1990-04-25  |  4KB  |  111 lines

  1.                                    SL-Gen
  2.                            (C)1990 by SL-EASY Software
  3.  
  4.                                 Users Manual
  5.  
  6.  
  7.  
  8. Requirements:
  9.   To use the routines created by this utility you MUST have
  10.   Technojocks Turbo Toolkit Ver.5
  11.   To use the Compiled version of SL-GEN you just need a PC with DOS 2.xx or
  12.    greater.
  13.   To use the Uncompiled version of SL-GEN you will need TP 5.xx
  14.  
  15.  
  16. How to use it:
  17.  
  18.   Just use a text editor that will save a file in ASCII format (I use my TP
  19.   editor) to design your input screen. I have provided you with a demo screen
  20.   file. (DEMO.ASC)
  21.   To begin your input field you must use a colon : followed by the field format.
  22.   that is defined in TTT toolbox manual.
  23.   Please consult your Technojock User manual for correct format characters.
  24.  
  25.   To end your input field you must use a space. Any blank space found after
  26.   a colon will end the field. Example:
  27.      Enter Social Security No.:### ## ####
  28.      this will not allow you to enter anymore than the first 3 characters.
  29.      the correct way to do it is like this:
  30.      Enter Social Security No.:###-##-####
  31.      If you do not leave a space at the end of the Field it will your field
  32.      is longer that you want it
  33.        Phone No.:(###)###-####ext.:###
  34.        This is figured as ONE field.
  35.  
  36.    If you have TP5 you can use your TP editor to design your screen, then save
  37.    it. Load SL-GEN, press CTRL-F9. When SL-GEN asks for the screen filename
  38.    just type the name you used when you saved your new screen. When it is done
  39.    writing you can then load your new program and make your modifications. The
  40.    program filename will be the same as your screen filename with a PAS
  41.    extension, So I suggest using an extension other than PAS for your screen
  42.    file.
  43.    If you don't have TP5 or above you can still use the TP editor, but you
  44.    will have to jump to DOS and run SL-GEN (the compiled version).
  45.  
  46.  
  47. Registration:
  48.    This demo version will be of some use to most of you, although you will
  49.    probably notice that it only uses the String_Field procedure. The
  50.    registered version allows you to select the type of input.
  51.    The registered version also creates units instead of programs for those
  52.    of you who write programs with more than one input screen. You can
  53.    design your input screens one to a file and use unique filenames.
  54.    The unit will consist of a simple procedure that defines your input fields
  55.    for each screen and then displays them whenever you wish with one call.
  56.  
  57.  
  58.    Program  Myprogram;
  59.  
  60.    USES  scrn1,
  61.          scrn2,
  62.          scrn3;
  63.  
  64.    begin
  65.      SCRN1;
  66.      {now you process the data }
  67.      SCRN2;
  68.      {process the data for Input Screen 2 }
  69.      SCRN3;
  70.      {screen 3 data can now be processed }
  71.    end.
  72.  
  73.  
  74.    TO register just send 20.00 to: SL-EASY Software
  75.                                    5 W.Canal St.
  76.                                    Navarre,Ohio 44662
  77.                                    or Fax your Visa/Mstcrd # to (216)879-3113
  78.  
  79.         Include your Name,Address City,st.Zip - Phone No. and where you heard
  80.         about this program.
  81.  
  82. Reason To Register:
  83.    Documentation -- The units in the registered version are heavily documented.
  84.                     Users manual is more detailed and professionally written.
  85.  
  86.    Registered version will also use more of the TTT toolbox routines
  87.       (ie, BYTE_FIELD,WORD_FIELD,INTEGER_FIELD,LONGINT_FIELD,REAL_FIELD,and more);
  88.  
  89.    You will recieve the latest version of SL-GEN,Documentation and Demo files.
  90.  
  91.    I'm sure that you will find this program of use, it has saved me alot of
  92.    time and typing. Technojocks Turbo Toolbox has been a great time saver to
  93.    me and now I've gone one step farther with SL-GEN. I believe that the
  94.    $20 registration fee is nothing compared to the amount of work this program
  95.    will save you.
  96.  
  97.  
  98. Feel free to distribute this Demo version.Please don't make any changes to it.
  99.  
  100.  
  101. SL-GEN is Copyright 1990 by SL-EASY Software (CSERVE 76667,564).
  102.  
  103. Turbo Technojocks Toolbox is Copyright 1989 by Technojock Software,Inc.
  104.    All rights Reserved.
  105.  
  106.  
  107.  
  108.    I can't live with out my copy of it. IF you haven't tried TTT yet, you
  109.    should right away. DOn't forget to register...Thanks Steve Leisy
  110.  
  111.